home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 23 / Amiga Format AFCD23 (Feb 1998, Issue 107).iso / -in_the_mag- / cologne / delitracker_ii / files / arexx.lzx / Arexx / dt_quick.rexx < prev    next >
OS/2 REXX Batch file  |  2016-02-11  |  222b  |  19 lines

  1. /* DeliTracker - toggles quickstart */
  2.  
  3. address 'DELITRACKER'
  4.  
  5. options results
  6.  
  7.  
  8. status G qst
  9.  
  10. if result == "no" then do
  11.     quick yes
  12.     say "Quickstart is now on..."
  13. end
  14. else do
  15.     quick no
  16.     say "Quickstart is now off..."
  17. end
  18.  
  19.